home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950929-19951130 / 000257_news@columbia.edu_Tue Oct 31 14:33:16 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15875
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 31 Oct 1995 09:33:22 -0500
  3. Received: by apakabar.cc.columbia.edu id AA10634
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 31 Oct 1995 09:33:21 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Maximum transfer speed
  9. Date: 31 Oct 1995 14:33:16 GMT
  10. Organization: Columbia University
  11. Lines: 60
  12. Message-Id: <475c3c$ac7@apakabar.cc.columbia.edu>
  13. References: <Pine.HPP.3.91.951030000148.24557B-100000@bluejay.creighton.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <Pine.HPP.3.91.951030000148.24557B-100000@bluejay.creighton.edu>,
  18. Psychos 'R Us  <honge@creighton.edu> wrote:
  19. : ...
  20. : Per someone else's suggestion, I typed these on the HP-UX kermit before 
  21. : giving it the command "server" and begin downloading:
  22. : set file type binary
  23. : set warning on
  24. : set buffer 65536 65536
  25. : set window 24
  26. : set send packet 2048
  27. : set block-check 2
  28. : set flow none
  29. : set flow rts
  30. : With OS/2 c-kermit, the transfer rate is around 1350cps.
  31. :
  32. Which can probably be pushed up towards 1600 bps by unprefixing
  33. control-characters.
  34.  
  35. : With MS-kermit... 
  36. :
  37. Which version?
  38.  
  39. : ... the transfer rate is around 880cps. The effeciency is around 18%.
  40. :
  41. The percent efficiency is based on the interface speed, not the
  42. modulation speed.  Since ZIP files can't be further compressed by
  43. the modem, the upward bound on transferring them is approximately
  44. 1.11 times the modulation speed = 1600 cps (derivation of this figure
  45. is left as an exercise for the reader :-).  880 cps is therefore more
  46. like 55%, not 18%.
  47.  
  48. : There are almost no retries. FYI, Y-modem G under same situation
  49. : will do around 1681cps with Hayes Smartcom (MS-DOS app) or halite that
  50. : came with OS/2.  I have set both OS/2 ck and MS-DOS kermit to rts/cts.
  51. : ...
  52. : The machine has Hayes ESP, which is kinda like 16550A with extended 
  53. : buffer size. The modem is Hayes Accura 14.4, which I think is also a 
  54. : decent modem...
  55. The most likely explanation involves the Hayes ESP board.  It can be used
  56. at three different levels: nonbuffered 8250 UART compatibility mode,
  57. 16-byte FIFO 16550A UART compatibility mode, and "native" ESP mode (with
  58. 1K buffer, DMA, etc), which is quite different from anything else on the
  59. planet and requires special drivers.  Now obviously Hayes Smartcom knows
  60. how to drive the ESP board to full advantage, hence the higher transfer
  61. rates with Hayes software.  I expect that the OS/2 serial driver knows
  62. enough about the ESP to put it into 16550A mode, but beyond that, does not
  63. bother with the Hayes-specific features.
  64.  
  65. I might be mistaken, but I believe that some special magic is required to
  66. put the ESP in 16550A mode, and this magic first appeared in MS-DOS Kermit
  67. version 3.14.  If that is true, then previous releases probably use it in
  68. character-at-a-time 8250 mode, which would explain the symptoms you
  69. report.  We did look at adding a Hayes ESP driver to MS-DOS Kermit, but it
  70. turned out to be a huge amount of work for a relatively small audience,
  71. and so it wound up in a rather low position on our priority list.
  72.  
  73. - Frank